home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / com / bbs / server / hellbbs / scripts / math.scr < prev    next >
Encoding:
Text File  |  1996-03-27  |  192 b   |  8 lines

  1. pyth="x^2+y^2"
  2. PRINT "Pythagoras calculation as demo for math functions..."
  3. PRINT pyth
  4. PRINT 
  5. INPUT "Enter x: ",x
  6. INPUT "Enter y: ",y
  7. PRINT
  8. PRINT "Result: "+CALC(pyth)    [ Cool, isn't it?